From eb3bb9f754def9fce0a01a03e193e084e2c78c5c Mon Sep 17 00:00:00 2001 From: Andrew Innes Date: Wed, 18 Dec 2002 23:52:39 +0000 Subject: [PATCH] ($(DOC)): Use -o and -a options to make-docfile, because GNU make doesn't append when using >> redirection. --- lib-src/makefile.w32-in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib-src/makefile.w32-in b/lib-src/makefile.w32-in index f6b79b5ddd2..e92a00866ad 100644 --- a/lib-src/makefile.w32-in +++ b/lib-src/makefile.w32-in @@ -225,8 +225,8 @@ lisp= \ DOC = DOC $(DOC): make-docfile - $(DEL) $(DOC) - "$(THISDIR)/$(BLD)/make-docfile" -d ../src $(obj) > $(DOC) - "$(THISDIR)/$(BLD)/make-docfile" -d ../src $(lisp) >> $(DOC) + "$(THISDIR)/$(BLD)/make-docfile" -o $(DOC) -d ../src $(obj) + "$(THISDIR)/$(BLD)/make-docfile" -a $(DOC) -d ../src $(lisp) $(CP) $(DOC) ../etc/DOC-X - mkdir "../src/$(OBJDIR)" - mkdir "../src/$(OBJDIR)/etc" -- 2.30.2